.team {
  width: 100%;
  padding: 144px 24px;
}

.wrapper {
  max-width: 1024px;
  margin: 0 auto;
}

.team_content {
  width: 100%;
  display: grid;
  grid-template: 1fr / repeat(2, 1fr);
  place-items: center flex-start;
}

.profiles {
  width: 100%;
  display: flex;
}

.prf {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #1c1c1e;
  padding: 4px;
  overflow: hidden;
}

.prf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profiles {
  display: flex;
}

.prf {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.prf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prf:nth-child(2) {
  transform: translateX(-12px);
}

.prf:nth-child(3) {
  transform: translateX(-24px);
}

.prf:nth-child(4) {
  transform: translateX(-36px);
}

.prf:nth-child(5) {
  transform: translateX(-48px);
}

.prf:nth-child(6) {
  transform: translateX(-60px);
}

.prf:nth-child(7) {
  transform: translateX(-72px);
}

.section-titre {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #FFF;
}

.team .section_body--small {
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .team_content {
    display: flex;
    flex-direction: column;
    gap: 72px;
  }

  .team .section_body--small {
    text-align: left;
  }
}